home *** CD-ROM | disk | FTP | other *** search
- /***** 名前ジェネレータ namegen *****/
- /***** wordbuf.c *****/
-
-
-
- #include <stdio.h>
- #include <stdlib.h>
- #include "namegen.h"
-
-
- /* ワード格納バッファ wordbuf を一個確保する */
- /* ret:確保した wordbuf への ptr */
- char *get_wordbuf(void){
-
- char *wordbuf;
-
- wordbuf = (char*)malloc(WORDBUF_SIZE);
- if (wordbuf == NULL){
- error(ERR_OUT_OF_MEMORY, NULL);
- }
- return wordbuf;
- }
-
-
-